From a295f2a1c691a3043cf0c6c266a9efc54f105f16 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 14 May 2008 13:25:19 +0100 Subject: [PATCH] ia64: fix domain restore A domain fails to restore on IA64 since cset 17524:18727843db60. This patch fixes it temporarily. Guest CPUID configuration for IA64 might be implemented in the future. Signed-off-by: Kouya Shimura --- tools/python/xen/xend/image.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 72cdc042ba..237db8875a 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -720,6 +720,9 @@ class IA64_HVM_ImageHandler(HVMImageHandler): (self.getRequiredInitialReservation() / 1024) ]) return args + def setCpuid(self): + # Guest CPUID configuration is not implemented yet. + return class IA64_Linux_ImageHandler(LinuxImageHandler): -- 2.30.2